/* General Styles */
.tc-blue {
  color: rgb(0, 88, 129);
}

.table thead th {
  background-color: rgb(66, 186, 241) !important;
}

.ul-sq li {
  position: relative;
  list-style: none;
  padding-left: 1.2em;
  padding-right: 5px;
}

.ul-sq li::before {
  content: "■"; /* Unicode square */
  color: #007BFF;
  position: absolute;
  left: 0;
}

.vds_img {
  height: 70vh;
  width: 100%;
  object-fit: cover;
}

/* Admission Section */
.admission-section {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

/* Left Image Column (Sticky) */
.admission-left {
  flex: 0 0 40%;
  position: sticky;
  top: 100px; /* adjust according to your navbar height */
  height: calc(100vh - 100px); /* full viewport minus navbar */
}

.admission-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Right Content Column */
.admission-right {
  flex: 1;
  padding-left: 30px;
  padding-top: 10px;
  padding-bottom: 50px;
}

/* Mobile View */
@media (max-width: 768px) {
  .admission-section {
    flex-direction: column;
  }

  .admission-left,
  .admission-right {
    flex: 0 0 100%;
    position: relative;
    height: auto;
  }

  .admission-right {
    padding-left: 0;
  }
}

